.dialog {
    z-index: 2;
    font-size: 16px;
    width: 668px;
    height: 205px;
    background: url(tck.png) #fff;
    position: fixed;
    top: 10px;
    left: 10px;
    font-weight: bold;
}
.dialog .header {
    height: 45px;
    line-height: 45px;
    border-bottom: 2px solid #fff;
    padding-left: 15px;
    cursor: move;
}
.dialog .header .gb {
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    color: #000;
    font-style: normal;
}
.dialog .button {
    height: 35px;
    line-height: 35px;
    text-align: center;
    float: right;
    width: 210px;
    margin-top: 25px;
}
.dialog .button a {
    display: inline-block;
    text-decoration: none;
    margin-right: 30px;
    font-size: 13px;
    font-weight: 100;
    height: 30px;
    line-height: 30px;
    margin-top: 5px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    color: #333333;
}
.dialog .button a:hover{
	color: #005293;
}
.dialog .button .cancel {
    width: 54px;
}
.dialog .button .sure {
    width: 82px;
    background: #2081cd;
    color: #fff;
}
.dialog .content {
    padding: 30px 60px;
    text-align: center;
    font-weight: 100;
    font-size: 17px;
    color: #575757;
}
.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    opacity: .8;
    z-index: 1;
}
.dialog .header .close {
    float: right;
    margin-right: 10px;
    text-decoration: none;
    color: #fff;
}